home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / Paint Shop Pro / PSP900enTR.exe / Data1.cab / _851D8EED5D0547279A6D6B596C480A29 < prev    next >
Encoding:
Text File  |  2004-08-16  |  520 b   |  22 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Erich Tran',
  6.         'Copyright': u'',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_FisheyeCorrection():
  13.     return {
  14.         'PreserveCentralScale': App.Constants.Boolean.false, 
  15.         'FieldOfView': 135
  16.         }
  17.  
  18. def Do(Environment):
  19.     # Fisheye Correction
  20.     App.Do( Environment, 'FisheyeCorrection',         Preset_FisheyeCorrection())
  21.  
  22.